Python (programming language)

Python
Official Python Logo
Paradigm multi-paradigm: object-oriented, imperative, functional, reflective
Appeared in 1991
Designed by Guido van Rossum
Developer Python Software Foundation
Stable release 3.1.2/ March 21, 2010; 10 months ago (2010-03-21)
2.7/ July 3, 2010; 7 months ago (2010-07-03)
Typing discipline duck, dynamic, strong
Major implementations CPython, IronPython, Jython, Python for S60, PyPy, Unladen Swallow
Dialects Stackless Python, RPython
Influenced by ABC, ALGOL 68,[1] C, Haskell, Icon, Lisp, Modula-3, Perl, Java
Influenced Boo, Cobra, D, Falcon, Groovy, Ruby, JavaScript
OS Cross-platform
License Python Software Foundation License
Usual file extensions .py, .pyw, .pyc, .pyo, .pyd
Website www.python.org
Wikibooks logo Python Programming at Wikibooks

Python is a general-purpose high-level programming language[2] whose design philosophy emphasizes code readability.[3] Python aims to combine "remarkable power with very clear syntax",[4] and its standard library is large and comprehensive. Its use of indentation for block delimiters is unusual among popular programming languages.

Python supports multiple programming paradigms, primarily but not limited to object oriented, imperative and, to a lesser extent, functional programming styles. It features a fully dynamic type system and automatic memory management, similar to that of Scheme, Ruby, Perl, and Tcl. Like other dynamic languages, Python is often used as a scripting language, but is also used in a wide range of non-scripting contexts.

The reference implementation of Python (CPython) is free and open source software and has a community-based development model, as do all or nearly all of its alternative implementations. CPython is managed by the non-profit Python Software Foundation.

Contents

History

Python was conceived in the late 1980s[5] and its implementation was started in December 1989[6] by Guido van Rossum at CWI in the Netherlands as a successor to the ABC programming language (itself inspired by SETL)[7] capable of exception handling and interfacing with the Amoeba operating system.[8] Van Rossum is Python's principal author, and his continuing central role in deciding the direction of Python is reflected in the title given to him by the Python community, Benevolent Dictator for Life (BDFL).

Python 2.0 was released on 16 October 2000, with many major new features including a full garbage collector and support for Unicode. However, the most important change was to the development process itself, with a shift to a more transparent and community-backed process.[9] Python 3.0, a major, backwards-incompatible release, was released on 3 December 2008[10] after a long period of testing. Many of its major features have been backported to the backwards-compatible Python 2.7.[11]

Programming philosophy

Python is a multi-paradigm programming language. Rather than forcing programmers to adopt a particular style of programming, it permits several styles: object-oriented programming and structured programming are fully supported, and there are a number of language features which support functional programming and aspect-oriented programming (including by metaprogramming[12] and by magic methods).[13] Many other paradigms are supported using extensions, such as pyDBC[14] and Contracts for Python[15] which allow Design by Contract.

Python uses dynamic typing and a combination of reference counting and a cycle-detecting garbage collector for memory management. An important feature of Python is dynamic name resolution (late binding), which binds method and variable names during program execution.

Rather than requiring all desired functionality to be built into the language's core, Python was designed to be highly extensible. New built-in modules can be easily written in C, C++ or Cython. Python can also be used as an extension language for existing modules and applications that need a programmable interface. This design of a small core language with a large standard library and an easily extensible interpreter was intended by Van Rossum from the very start because of his frustrations with ABC (which espoused the opposite mindset).[5]

The design of Python offers only limited support for functional programming in the Lisp tradition. However, Python's design philosophy exhibits significant similarities to those of minimalist Lisp-family languages, such as Scheme. The library has two modules (itertools and functools) that implement proven functional tools borrowed from Haskell and Standard ML.[16]

While offering choice in coding methodology, the Python philosophy rejects exuberant syntax, such as in Perl, in favor of a sparser, less-cluttered grammar. Python's developers expressly promote a particular "culture" or ideology based on what they want the language to be, favoring language forms they see as "beautiful", "explicit" and "simple". As Alex Martelli put it in his Python Cookbook (2nd ed., p. 230): "To describe something as clever is NOT considered a compliment in the Python culture." Python's philosophy rejects the Perl "there is more than one way to do it" approach to language design in favor of "there should be one—and preferably only one—obvious way to do it".[17]

Python's developers eschew premature optimization, and moreover, reject patches to non-critical parts of CPython which would offer a marginal increase in speed at the cost of clarity.[18] Python is sometimes described as "slow".[19] However, by the Pareto principle, most problems and sections of programs are not speed critical. When speed is a problem, Python programmers tend to try using a JIT compiler such as Psyco, rewriting the time-critical functions in "closer to the metal" languages such as C, or by translating (a dialect of) Python code to C code using tools like Cython.[20]

The core philosophy of the language is summarized by the document "PEP 20 (The Zen of Python)".[17]

Name and neologisms

An important goal of the Python developers is making Python fun to use. This is reflected in the origin of the name (based on the television series Monty Python's Flying Circus), in the common practice of using Monty Python references in example code, and in an occasionally playful approach to tutorials and reference materials.[21][22] For example, the metasyntactic variables often used in Python literature are spam and eggs, instead of the traditional foo and bar.

A common neologism in the Python community is pythonic, which can have a wide range of meanings related to program style. To say that a piece of code is pythonic is to say that it uses Python idioms well, that it is natural or shows fluency in the language. Likewise, to say of an interface or language feature that it is pythonic is to say that it works well with Python idioms, that its use meshes well with the rest of the language.

In contrast, a mark of unpythonic code is that it attempts to write C++ (or Lisp, Perl, or Java) code in Python—that is, provides a rough transcription rather than an idiomatic translation of forms from another language. The concept of pythonicity is tightly bound to Python's minimalist philosophy of readability and avoiding the "there's more than one way to do it" approach. Unreadable code or incomprehensible idioms are unpythonic.

Users and admirers of Python—most especially those considered knowledgeable or experienced—are often referred to as Pythonists, Pythonistas, and Pythoneers.[23]

The prefix Py can be used to show that something is related to Python. Examples of the use of this prefix in names of Python applications or libraries include Pygame, a binding of SDL to Python (commonly used to create games); PyS60, an implementation for the Symbian Series 60 Operating System; PyQt and PyGTK, which bind Qt and GTK, respectively, to Python; and PyPy, a Python implementation written in Python. The prefix is also used outside of naming software packages: the major Python conference is named PyCon.

Usage

Python is often used as a scripting language for web applications, e.g. via mod_wsgi for the Apache web server. With Web Server Gateway Interface a standard API has been developed to facilitate these applications. Web application frameworks like Django, Pylons, TurboGears, web2py, Flask and Zope support developers in the design and maintenance of complex applications. Libraries like NumPy, SciPy and Matplotlib allow Python to be used effectively in scientific computing.

Python has been successfully embedded in a number of software products as a scripting language, including in finite element method software such as Abaqus, 3D animation packages such as Maya, MotionBuilder, Softimage, Cinema 4D, BodyPaint 3D, modo, and Blender, and 2D imaging programs like GIMP, Inkscape, Scribus, and Paint Shop Pro.[24] ESRI is now promoting Python as the best choice for writing scripts in ArcGIS.[25] It has even been used in several videogames,[26][27] and has been adopted as one of the two available scripting languages in Google Docs.[28]

For many operating systems, Python is a standard component; it ships with most Linux distributions, with NetBSD, and OpenBSD, and with Mac OS X and can be used from the terminal. A number of Linux distributions use installers written in Python: Ubuntu uses the Ubiquity installer, while Red Hat Linux and Fedora use the Anaconda installer. Gentoo Linux uses Python in its package management system, Portage, and the standard tool to access it, emerge. Pardus uses it for administration and during system boot.[29]

Python has also seen extensive use in the information security industry, including exploit development.[30]

Among the users of Python are YouTube[31] and the original BitTorrent client.[32] Large organizations that make use of Python include Google,[33] Yahoo!,[34] CERN,[35] NASA,[36] and ITA.[37] Most of the Sugar software for the One Laptop Per Child XO, now developed at Sugar Labs, is written in Python.[38]

Syntax and semantics

Syntax-highlighted Python 2.x code.

Python was intended to be a highly readable language. It is designed to have an uncluttered visual layout, frequently using English keywords where other languages use punctuation. Python requires less boilerplate than traditional manifestly typed structured languages such as C or Pascal, and has a smaller number of syntactic exceptions and special cases than either of these.[39]

Indentation

Python uses whitespace indentation, rather than curly braces or keywords, to delimit blocks (a feature also known as the off-side rule). An increase in indentation comes after certain statements; a decrease in indentation signifies the end of the current block.[40]

Statements and control flow

Python's statements include (among others):

Each statement has its own semantics: for example, the def statement does not execute its block immediately, unlike most other statements.

CPython does not support continuations, and according to Guido van Rossum it never will.[41] However, better support for coroutine-like functionality is provided in 2.5, by extending Python's generators.[42] Prior to 2.5, generators were lazy iterators; information was passed unidirectionally out of the generator. As of Python 2.5, it is possible to pass information back into a generator function.

Expressions

Python expressions are similar to languages such as C and Java. Some important notes:

In Python, a distinction between expressions and statements is rigidly enforced, in contrast to languages such as Common Lisp, Scheme or Ruby. This leads to some duplication of functionality, e.g.

Statements cannot be a part of an expression and so list and other comprehensions or lambda expressions, all being expressions, cannot contain statements. A particular case of this is that an assignment statement such as 'a =1' cannot form part of the conditional expression of a conditional statement, this has the advantage of avoiding a classic C error of mistaking an assignment token '=', for an equality operator '==' which would remain valid C in if (c = 1) { ... } but if c = 1: ... is invalid Python code.

Methods

Methods on objects are functions attached to the object's class; the syntax instance.method(argument) is, for normal methods and functions, syntactic sugar for Class.method(instance, argument). Python methods have an explicit self parameter to access instance data, in contrast to the implicit self in some other object-oriented programming languages (for example, Java, C++ or Ruby).[43]

Typing

Python uses duck typing and has typed objects but untyped variable names. Type constraints are not checked at compile time; rather, operations on an object may fail, signifying that the given object is not of a suitable type. Despite being dynamically typed, Python is strongly typed, forbidding operations that are not well-defined (for example, adding a number to a string) rather than silently attempting to make sense of them.

Python allows programmers to define their own types using classes, which are most often used for object-oriented programming. New instances of classes are constructed by calling the class (for example, SpamClass() or EggsClass()), and the classes themselves are instances of the metaclass type (itself an instance of itself), allowing metaprogramming and reflection.

Prior to version 3.0, Python had two kinds of classes: "old-style" and "new-style". Old-style classes were eliminated in Python 3.0, making all classes new-style. In versions between 2.2 and 3.0, both kinds of classes could be used. The syntax of both styles is the same, the difference being whether the class object is inherited from, directly or indirectly (all new-style classes inherit from object and are instances of type).

Here is a summary of Python's built-in types:

Type Description Syntax example
str An immutable sequence of characters. In Python 2, strings are a sequence of characters. Unicode strings need to be declared by prefixing with the letter u. In Python 3 strings are Unicode by default. 'Wikipedia'
"Wikipedia"
"""Spanning
multiple
lines"""
bytes An immutable sequence of bytes b'Some ASCII'
b"Some ASCII"
list Mutable, can contain mixed types [4.0, 'string', True]
tuple Immutable, can contain mixed types (4.0, 'string', True)
set, frozenset Unordered, contains no duplicates {4.0, 'string', True}
frozenset([4.0, 'string', True])
dict A mutable group of key and value pairs {'key1': 1.0, 3: False}
int An immutable fixed precision number of unlimited magnitude 42
float An immutable floating point number (system-defined precision) 3.1415927
complex An immutable complex number with real number and imaginary parts 3+2.7j
bool An immutable truth value True
False

Mathematics

Python defines the modulus operator so that the result of a % b is in the open interval [0,b), where b is a positive integer. (When b is negative, the result lies in the interval (b,0]). This is the usual way of defining the modulus operation in mathematics. However, this consequently affects how integer division is defined. To maintain the validity of the equation b * (a // b) + a % b = a, Integer division is defined to round towards minus infinity. Therefore 7 // 3 is 2, but (−7) // 3 is −3. This is different than many programming languages, where the result of integer division rounds towards zero and the modulus operator is consequently defined in a way which can return negative numbers.[44]

Python provides a round function for rounding floats to integers. Version 2.6.1 and lower use round-away-from-zero: round(0.5) is 1.0, round(-0.5) is -1.0. Version 3.0 and higher use round-to-even: round(1.5) is 2.0, round(2.5) is 2.0. The Decimal type/class in module decimal (since version 2.4) provides exact numerical representation and several rounding modes.

Python also defines boolean expressions containing multiple equality relations to be consistent with how they are generally used in mathematics. In other words the expression a < b < c means a is less than b and b is less than c. This is different than how C derived languages interpret the expression, which would be 1 is less than c when a is less than b otherwise 0 is less than c.[45]

Implementations

CPython

The mainstream Python implementation, known as CPython, is written in C meeting the C89 standard.[46] CPython compiles Python programs into intermediate bytecode,[47] which are then executed by the virtual machine.[48] It is distributed with a large standard library written in a mixture of C and Python. CPython ships in versions for many platforms, including Microsoft Windows and most modern Unix-like systems. CPython was intended from almost its very conception to be cross-platform; its use and development on esoteric platforms such as Amoeba, alongside more conventional ones like Unix and Mac OS, has greatly helped in this regard.[49]

Stackless Python is a significant fork of CPython that implements microthreads; it does not use the C memory stack. It can be expected to run on approximately the same platforms that CPython runs on.

Google started a project called Unladen Swallow in 2009 with the aims of increasing the speed of the Python interpreter by 5 times and improving its multithreading ability to scale to thousands of cores.[50]

Alternative implementations

Jython compiles the Python program into Java byte code, which can then be executed by every Java Virtual Machine implementation. This also enables the use of Java class library functions from the Python program. IronPython follows a similar approach in order to run Python programs on the .NET Common Language Runtime. PyPy is an experimental self-hosting implementation of Python, written in Python, that can output several types of bytecode, object code and intermediate languages. There also exist compilers to high-level object languages, with either unrestricted Python, a restricted subset of Python, or a language similar to Python as the source language. PyPy is of this type, compiling RPython to several languages; other examples include Pyjamas compiling to Javascript; Shed Skin compiling to C++; and Cython & Pyrex compiling to C.

In 2005 Nokia released a Python interpreter for the Series 60 mobile phones called PyS60. It includes many of the modules from the CPython implementations and some additional modules for integration with the Symbian operating system. This project has been kept up to date to run on all variants of the S60 platform and there are several third party modules available. The Nokia N900 also supports Python with gtk windows libraries, with the feature that programs can be both written and run on the device itself. There is also a Python interpreter for Windows CE devices (including Pocket PC). It is called PythonCE. There are additional tools available for easy application and GUI development.

Around 2004 and 2006, the Pyastra project and the PyMite project started porting Python to some very resource-constrained microcontrollers -- less than 4 KBytes of RAM.[51]

ChinesePython (中蟒) is a Python programming language using Chinese language lexicon. Besides reserved words and variable names, most data type operations can be coded in Chinese as well.

Interpretational semantics

Most Python implementations (including CPYthon)) can function as a command line interpreter, for which the user enters statements sequentially and receives the results immediately. In short, Python acts as a shell. While the semantics of the other modes of execution (bytecode compilation, or compilation to native code) preserve the sequential semantics, they offer a speed boost at the cost of interactivity, so they are usually only used outside of a command-line interaction (e.g., when importing a module).

Other shells add capabilities beyond those in the basic interpreter, including IDLE and IPython. While generally following the visual style of the Python shell, they implement features like auto-completion, retention of session state, and syntax highlighting.

Some implementations can compile not only to bytecode, but can turn Python code into machine code. So far, this has only been done for restricted subsets of Python. PyPy takes this approach, naming its restricted compilable version of Python RPython.

Psyco is a specialising just in time compiler that integrates with CPython and transforms bytecode to machine code at runtime. The produced code is specialised for certain data types and is faster than standard Python code. Psyco is compatible with all Python code, not only a subset.[52]

Development

Python development is conducted largely through the Python Enhancement Proposal (or "PEP") process. PEPs are standardized design documents providing general information related to Python, including proposals, descriptions, design rationales, and explanations for language features.[53] Outstanding PEPs are reviewed and commented upon by Van Rossum, the Python project's Benevolent Dictator for Life (leader / language architect).[54] CPython's developers also communicate over a mailing list, python-dev, which is the primary forum for discussion about the language's development; specific issues are discussed in the Roundup bug tracker maintained at python.org.[55] Development takes place at the self-hosted svn.python.org.

CPython's public releases come in three types, distinguished by which part of the version number is incremented:

A number of alpha, beta, and release-candidates are also released as previews and for testing before the final release is made. Although there is a rough schedule for each release, this is often pushed back if the code is not ready. The development team monitor the state of the code by running the large unit test suite during development, and using the BuildBot continuous integration system.[58]

Standard library

Python has a large standard library, commonly cited as one of Python's greatest strengths,[59] providing pre-written tools suited to many tasks. This is deliberate and has been described as a "batteries included"[60] Python philosophy. The modules of the standard library can be augmented with custom modules written in either C or Python. Boost C++ Libraries includes a library, Boost.Python, to enable interoperability between C++ and Python. Because of the wide variety of tools provided by the standard library, combined with the ability to use a lower-level language such as C and C++, which is already capable of interfacing between other libraries, Python can be a powerful glue language between languages and tools.

The standard library is particularly well tailored to writing Internet-facing applications, with a large number of standard formats and protocols (such as MIME and HTTP) already supported. Modules for creating graphical user interfaces, connecting to relational databases, arithmetic with arbitrary precision decimals, manipulating regular expressions, and doing unit testing are also included.[61]

Some parts of the standard library are covered by specifications (for example, the WSGI implementation wsgiref follows PEP 333), but the majority of the modules are not. They are specified by their code, internal documentation, and test suite (if supplied). However, because most of the standard library is cross-platform Python code, there are only a few modules that must be altered or completely rewritten by alternative implementations.

The standard library is not essential to run python or embed python within an application. Blender 2.49 for instance omits most of the standard library.

Influences on other languages

Python's design and philosophy have influenced several programming languages, including:

Python's development practices have also been emulated by other languages. The practice of requiring a document describing the rationale for, and issues surrounding, a change to the language (in Python's case, a PEP) is also used in Tcl[69] and Erlang[70] because of Python's influence.

See also

References

  1. "Interview with Guido van Rossum". July 1998. http://www.amk.ca/python/writing/gvr-interview. Retrieved 29 2007. 
  2. "What is Python Good For?". General Python FAQ. Python Foundation. http://docs.python.org/faq/general.html#what-is-python-good-for. Retrieved 2008-09-05. 
  3. "What is Python? Executive Summary". Python documentation. Python Foundation. http://www.python.org/doc/essays/blurb/. Retrieved 2007-03-21. 
  4. "General Python FAQ". python.org. Python Software Foundation. http://www.python.org/doc/faq/general/#what-is-python. Retrieved 2009-06-27. 
  5. 5.0 5.1 "The Making of Python". Artima Developer. http://www.artima.com/intv/pythonP.html. Retrieved 2007-03-22. 
  6. "A Brief Timeline of Python". Guido van Rossum. http://python-history.blogspot.com/2009/01/brief-timeline-of-python.html. Retrieved 2009-01-20. 
  7. van Rossum, Guido. "[Python-Dev] SETL (was: Lukewarm about range literals)". http://mail.python.org/pipermail/python-dev/2000-August/008881.html. Retrieved 2009-06-27. 
  8. "Why was Python created in the first place?". Python FAQ. http://www.python.org/doc/faq/general/#why-was-python-created-in-the-first-place. Retrieved 2007-03-22. 
  9. A.M. Kuchling and Moshe Zadka. "What's New in Python 2.0". http://www.amk.ca/python/2.0/. Retrieved 2007-03-22. 
  10. "Python 3.0 Release". Python Software Foundation. http://python.org/download/releases/3.0/. Retrieved 2009-07-08. 
  11. van Rossum, Guido (5 April 2006). "PEP 3000 -- Python 3000". Python Software Foundation. http://www.python.org/dev/peps/pep-3000/. Retrieved 2009-06-27. 
  12. The Cain Gang Ltd.. "Python Metaclasses: Who? Why? When?" (PDF). http://www.python.org/community/pycon/dc2004/papers/24/metaclasses-pycon.pdf. Retrieved 2009-06-27. 
  13. "3.3. Special method names". The Python Language Reference. Python Software Foundation. http://docs.python.org/3.0/reference/datamodel.html#special-method-names. Retrieved 2009-06-27. 
  14. Contracts for Python, PyDBC
  15. Contracts for Python, pycontract
  16. "6.5 itertools - Functions creating iterators for efficient looping". Docs.python.org. http://docs.python.org/lib/module-itertools.html. Retrieved 2008-11-24. 
  17. 17.0 17.1 "PEP 20 - The Zen of Python". Python Software Foundation. 2004-08-23. http://www.python.org/dev/peps/pep-0020/. Retrieved 2008-11-24. 
  18. Python Culture
  19. Python is... slow? December 21st, 2004 — Peter Bowyer’s weblog]
  20. Python Patterns - An Optimization Anecdote
  21. Python Tutorial
  22. Python Challenge tutorial
  23. David Goodger. "Code Like a Pythonista: Idiomatic Python". http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html. ; "How to think like a Pythonista". http://python.net/crew/mwh/hacks/objectthink.html. 
  24. Documentation of the PSP Scripting API can be found at JASC Paint Shop Pro 9: Additional Download Resources
  25. "About getting started with writing geoprocessing scripts". November 2006. http://webhelp.esri.com/arcgisdesktop/9.2/index.cfm?TopicName=About_getting_started_with_writing_geoprocessing_scripts. Retrieved April 2007. 
  26. porkbelly (2007-07-23). "Stackless Python 2.5". Eve Insider Dev Blog. CCP Games. Archived from the original on 2010-08-10. http://www.webcitation.org/5ru5w3vSR. "As you may well know, your favorite space-game owes its existence to the programming language Python" 
  27. Caudill, Barry (2005-09-20). "Modding Sid Meier's Civilization IV". Sid Meier's Civilization IV Developer Blog. Firaxis Games. Archived from the original on 2010-08-10. http://www.webcitation.org/5ru5VItfv. "we created three levels of tools … The next level offers Python and XML support, letting modders with more experience manipulate the game world and everything in it." 
  28. "Python Language Guide (v1.0)". Google Documents List Data API v1.0. Google. Archived from the original on 2010-08-10. http://www.webcitation.org/5ru5FHxfV. 
  29. ":: Pardus :: TÜBİTAK/UEKAE ::". Pardus.org.tr. http://www.pardus.org.tr/eng/projects/comar/PythonInPardus.html. Retrieved 2008-11-24. 
  30. Products and discussion of this use of Python include "IMMUNITY : Knowing You're Secure". Immunitysec.com. http://www.immunitysec.com/products-immdbg.shtml. Retrieved 2008-11-24. ; CORE Security Technologies' open source software repository; "Wapiti - Web application security auditor". Wapiti.sourceforge.net. http://wapiti.sourceforge.net/. Retrieved 2008-11-24. ; "TAOF - theartoffuzzing.com - Home". Theartoffuzzing.com. http://www.theartoffuzzing.com/joomla/. Retrieved 2008-11-24. ; "[Dailydave] RE: Network Exploitation Tools aka Exploitation Engines". Fist.immunitysec.com. http://fist.immunitysec.com/pipermail/dailydave/2004-September/000851.html. Retrieved 2008-11-24. 
  31. "Coder Who Says Py: YouTube runs on Python!". Sayspy.blogspot.com. December 12, 2006. http://sayspy.blogspot.com/2006/12/youtube-runs-on-python.html. Retrieved 2008-11-24. 
  32. Review of original BitTorrent software at O'Reilly Python Dev Center
  33. "Quotes about Python". Python.org. http://python.org/about/quotes/. Retrieved 2008-11-24. 
  34. "Organizations Using Python". Python.org. http://wiki.python.org/moin/OrganizationsUsingPython. Retrieved 2009-01-15. 
  35. CERN Document Server: Record#974627: Python : the holy grail of programming
  36. "Python Success Stories". Python.org. http://www.python.org/about/success/usa/. Retrieved 2008-11-24. 
  37. Python Slithers into Systems by Darryl K. Taft
  38. "What is Sugar? - Sugar Labs". sugarlabs.org. 2008-05-10. http://sugarlabs.org/go/Sugar. Retrieved 0r-2-11. 
  39. "Is Python a good language for beginning programmers?". General Python FAQ. Python Foundation. March 7, 2005. http://www.python.org/doc/faq/general/#is-python-a-good-language-for-beginning-programmers. Retrieved 2007-03-21. 
  40. Myths about indentation in Python
  41. van Rossum, Guido (February 9, 2006). "Language Design Is Not Just Solving Puzzles". Artima forums. Artima. http://www.artima.com/weblogs/viewpost.jsp?thread=147358. Retrieved 2007-03-21. 
  42. van Rossum, Guido; Phillip J. Eby (April 21, 2006). "Coroutines via Enhanced Generators". Python Enhancement Proposals. Python Foundation. http://www.python.org/peps/pep-0342.html. Retrieved 2007-03-21. 
  43. "Why must 'self' be used explicitly in method definitions and calls?". Python FAQ. Python Foundation. http://www.python.org/doc/faq/general/#why-must-self-be-used-explicitly-in-method-definitions-and-calls. 
  44. "Why Python's Integer Division Floors". http://python-history.blogspot.com/2010/08/why-pythons-integer-division-floors.html. Retrieved 2010-08-25. 
  45. Python Essential Reference, David M Beazley
  46. "PEP 7 - Style Guide for C Code". Python.org. http://www.python.org/dev/peps/pep-0007/. Retrieved 2008-11-24. 
  47. CPython byte code
  48. Python 2.5 internals
  49. "O'Reilly - An Interview with Guido van Rossum". Oreilly.com. http://www.oreilly.com/pub/a/oreilly/frank/rossum_1099.html. Retrieved 2008-11-24. 
  50. ProjectPlan, Plans for optimizing Python - unladen-swallow
  51. PyMite: Python-on-a-chip
  52. Introduction to Psyco
  53. PEP 1 -- PEP Purpose and Guidelines
  54. "Parade of the PEPs". Python.org. http://www.python.org/doc/essays/pepparade.html. Retrieved 2008-11-24. 
  55. Cannon, Brett. "Guido, Some Guys, and a Mailing List: How Python is Developed". python.org. Python Software Foundation. http://python.org/dev/intro/. Retrieved 2009-06-27. 
  56. Norwitz, Neal (8 April 2002]]). "[Python-Dev] Release Schedules (was Stability & change)". http://mail.python.org/pipermail/python-dev/2002-April/022739.html. Retrieved 2009-06-27. 
  57. Baxter, Anthony; Aahz (2001-03-15). "PEP 6 -- Bug Fix Releases". Python Software Foundation. http://python.org/dev/peps/pep-0006/. Retrieved 2009-06-27. 
  58. Python Buildbot, Python
  59. Przemyslaw Piotrowski, Build a Rapid Web Development Environment for Python Server Pages and Oracle, Oracle Technology Network, July 2006. Retrieved October 21, 2008.
  60. "About Python". python.org. Python Software Foundation. http://www.python.org/about/. Retrieved 2009-06-27. 
  61. "PEP 327 - Decimal Data Type". Python.org. http://www.python.org/peps/pep-0327.html. Retrieved 2008-11-24. 
  62. "BOO - Gotchas for Python Users". Boo.codehaus.org. http://boo.codehaus.org/Gotchas+for+Python+Users. Retrieved 2008-11-24. 
  63. "Cobra - Acknowledgements". cobra-language.com. http://cobra-language.com/docs/acknowledgements/. Retrieved 2010-04-07. 
  64. "Cobra - Comparison to Python". cobra-language.com. http://cobra-language.com/docs/python/. Retrieved 2010-04-07. 
  65. "proposals:iterators_and_generators [ES4 Wiki]". Wiki.ecmascript.org. http://wiki.ecmascript.org/doku.php?id=proposals:iterators_and_generators. Retrieved 2008-11-24. 
  66. Kincaid, Jason (2009-11-10). "Google’s Go: A New Programming Language That’s Python Meets C++". TechCrunch. http://www.techcrunch.com/2009/11/10/google-go-language/. Retrieved 2010-01-29. 
  67. James Strachan (2003-08-29). "Groovy - the birth of a new dynamic language for the Java platform". http://radio.weblogs.com/0112098/2003/08/29.html. 
  68. Mike Lin. ""The Whitespace Thing" for OCaml". http://people.csail.mit.edu/mikelin/ocaml+twt/. Retrieved 2009-04-12. 
  69. "TIP #3: TIP Format". Tcl.tk. http://www.tcl.tk/cgi-bin/tct/tip/3.html. Retrieved 2008-11-24. 
  70. EEP - Erlang Enhancement Proposal

Further reading

External links